home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / int16.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  15KB  |  725 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: int16.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The INT16 class is used to represent 16 bit signed integers
  32. independently of the operating system or hardware platform used.
  33. It works by separating 16-bit values into two separate byte
  34. values and reordering the bytes lowest-order to highest-order.
  35. An INT16 type has a base 10 positive limit of 32,767 and a
  36. negative limit of 32,768.
  37. */
  38. // ----------------------------------------------------------- // 
  39. #include <string.h>
  40. #include <memory.h>
  41. #include "int16.h"
  42. #include "ehandler.h"
  43.  
  44. INT16::INT16(__SWORD__ val)
  45. {
  46.   UnPackBits(val);
  47. }
  48.  
  49. INT16::INT16(const INT16& ob)
  50. {
  51.   memmove((void *)byte, (const void *)ob.byte, 2);
  52. }
  53.  
  54. INT16& INT16::operator=(const INT16& ob)
  55. {
  56.   memmove((void *)byte, (const void *)ob.byte, 2);
  57.   return *this;
  58. }
  59.  
  60. INT16& INT16::operator=(const __SWORD__ val)
  61. {
  62.   UnPackBits(val);
  63.   return *this;
  64. }
  65.  
  66. INT16::operator __SWORD__() const
  67. {
  68.   return PackBits();
  69. }
  70.  
  71. __SWORD__ INT16::PackBits() const
  72. {
  73.   __SWORD__ a, b;
  74.   
  75.   a = (__SWORD__)byte[0];
  76.   b = (__SWORD__)byte[1];
  77.  
  78.   a = a & 0xFF;
  79.   b = (b<<8) & 0xFF00;
  80.  
  81.   return a + b;
  82. }
  83.  
  84. void INT16::UnPackBits(__SWORD__ val)
  85. {
  86.   byte[0] = val & 0xFF;
  87.   byte[1] = (val & 0xFF00)>>8;
  88. }
  89.  
  90. INT16 INT16::operator++(int) // Postfix
  91. {
  92.   INT16 val_before(*this); 
  93.   operator=(*this + 1);
  94.   return val_before;
  95. }
  96.  
  97. INT16 INT16::operator--(int) // Postfix
  98. {
  99.   INT16 val_before(*this); 
  100.   operator=(*this - 1);
  101.   return val_before;
  102. }
  103.  
  104. void INT16::operator/=(const INT16 &i)
  105. {
  106.   if(i == 0)
  107. #ifdef CPP_EXCEPTIONS
  108.     throw CDivideByZero();
  109. #else
  110.     Error->SignalException(EHandler::DivideByZero);
  111. #endif
  112.  
  113.   operator=(*this / i);
  114. }
  115.  
  116. void INT16::operator/=(const __LWORD__ &i)
  117. {
  118.   if(i == 0)
  119. #ifdef CPP_EXCEPTIONS
  120.     throw CDivideByZero();
  121. #else
  122.     Error->SignalException(EHandler::DivideByZero);
  123. #endif
  124.  
  125.     operator=(*this / i);
  126. }
  127.  
  128. void INT16::operator/=(const __ULWORD__ &i)
  129. {
  130.   if(i == 0)
  131. #ifdef CPP_EXCEPTIONS
  132.     throw CDivideByZero();
  133. #else
  134.     Error->SignalException(EHandler::DivideByZero);
  135. #endif
  136.  
  137.   operator=(*this / i);
  138. }
  139.  
  140. void INT16::operator/=(const __WORD__ &i)
  141. {
  142.   if(i == 0)
  143. #ifdef CPP_EXCEPTIONS
  144.     throw CDivideByZero();
  145. #else
  146.     Error->SignalException(EHandler::DivideByZero);
  147. #endif
  148.  
  149.   operator=(*this / i);
  150. }
  151.  
  152. void INT16::operator/=(const __SWORD__ &i)
  153. {
  154.   if(i == 0)
  155. #ifdef CPP_EXCEPTIONS
  156.     throw CDivideByZero();
  157. #else
  158.     Error->SignalException(EHandler::DivideByZero);
  159. #endif
  160.  
  161.   operator=(*this / i);
  162. }
  163.  
  164. void INT16::operator/=(const __UWORD__ &i)
  165. {
  166.   if(i == 0)
  167. #ifdef CPP_EXCEPTIONS
  168.     throw CDivideByZero();
  169. #else
  170.     Error->SignalException(EHandler::DivideByZero);
  171. #endif
  172.  
  173.   operator=(*this / i);
  174. }
  175.  
  176. void INT16::operator/=(const __USWORD__ &i)
  177. {
  178.   if(i == 0)
  179. #ifdef CPP_EXCEPTIONS
  180.     throw CDivideByZero();
  181. #else
  182.     Error->SignalException(EHandler::DivideByZero);
  183. #endif
  184.  
  185.   operator=(*this / i);
  186. }
  187.  
  188. void INT16::operator/=(const __SBYTE__ &i)
  189. {
  190.   if(i == 0)
  191. #ifdef CPP_EXCEPTIONS
  192.     throw CDivideByZero();
  193. #else
  194.     Error->SignalException(EHandler::DivideByZero);
  195. #endif
  196.  
  197.   operator=(*this / (__SWORD__)i);
  198. }
  199.  
  200. void INT16::operator/=(const __UBYTE__ &i)
  201. {
  202.   if(i == 0)
  203. #ifdef CPP_EXCEPTIONS
  204.     throw CDivideByZero();
  205. #else
  206.     Error->SignalException(EHandler::DivideByZero);
  207. #endif
  208.  
  209.   operator=(*this / (__SWORD__)i);
  210. }
  211.  
  212. int operator==(const INT16 &a, const INT16 &b)
  213. {
  214.   return a.PackBits() == b.PackBits();
  215. }
  216.  
  217. int operator==(const INT16 &a, const __LWORD__ &bs)
  218. {
  219.   return a.PackBits() == bs;
  220. }
  221.  
  222. int operator==(const __LWORD__ &as, const INT16 &b)
  223. {
  224.   return as == b.PackBits(); 
  225. }
  226.  
  227. int operator==(const INT16 &a, const __ULWORD__ &bs)
  228. {
  229.   return a.PackBits() == bs;
  230. }
  231.  
  232. int operator==(const __ULWORD__ &as, const INT16 &b)
  233. {
  234.   return as == b.PackBits(); 
  235. }
  236.  
  237. int operator==(const INT16 &a, const __WORD__ &bs)
  238. {
  239.   return a.PackBits() == bs;
  240. }
  241.  
  242. int operator==(const __WORD__ &as, const INT16 &b)
  243. {
  244.   return as == b.PackBits();
  245. }
  246.  
  247. int operator==(const INT16 &a, const __SWORD__ &bs)
  248. {
  249.   return a.PackBits() == bs;
  250. }
  251.  
  252. int operator==(const __SWORD__ &as, const INT16 &b)
  253. {
  254.   return as == b.PackBits(); 
  255. }
  256.  
  257. int operator==(const INT16 &a, const __UWORD__ &bs)
  258. {
  259.   return a.PackBits() == bs;
  260. }
  261.  
  262. int operator==(const __UWORD__ &as, const INT16 &b)
  263. {
  264.   return as == b.PackBits(); 
  265. }
  266.  
  267. int operator==(const INT16 &a, const __USWORD__ &bs)
  268. {
  269.   return  a.PackBits() == bs;
  270. }
  271.  
  272. int operator==(const __USWORD__ &as, const INT16 &b)
  273. {
  274.   return as == b.PackBits(); 
  275. }
  276.  
  277. int operator==(const INT16 &a, const __SBYTE__ &bs)
  278. {
  279.   return a.PackBits() == (__SWORD__)bs;
  280. }
  281.  
  282. int operator==(const __SBYTE__ &as, const INT16 &b)
  283. {
  284.   return (__SWORD__)as == b.PackBits(); 
  285. }
  286.  
  287. int operator==(const INT16 &a, const __UBYTE__ &bs)
  288. {
  289.   return a.PackBits() == (__SWORD__)bs;
  290. }
  291.  
  292. int operator==(const __UBYTE__ &as, const INT16 &b)
  293. {
  294.   return (__SWORD__)as == b.PackBits(); 
  295. }
  296.  
  297. int operator!=(const INT16 &a, const INT16 &b)
  298. {
  299.   return a.PackBits() != b.PackBits();
  300. }
  301.  
  302. int operator!=(const INT16 &a, const __LWORD__ &bs)
  303. {
  304.   return a.PackBits() != bs;
  305. }
  306.  
  307. int operator!=(const __LWORD__ &as, const INT16 &b)
  308. {
  309.   return as != b.PackBits();
  310. }
  311.  
  312. int operator!=(const INT16 &a, const __ULWORD__ &bs)
  313. {
  314.   return a.PackBits() != bs;
  315. }
  316.  
  317. int operator!=(const __ULWORD__ &as, const INT16 &b)
  318. {
  319.   return as != b.PackBits();
  320. }
  321.  
  322. int operator!=(const INT16 &a, const __WORD__ &bs)
  323. {
  324.   return a.PackBits() != bs;
  325. }
  326.  
  327. int operator!=(const __WORD__ &as, const INT16 &b)
  328. {
  329.   return as != b.PackBits();
  330. }
  331.  
  332. int operator!=(const INT16 &a, const __SWORD__ &bs)
  333. {
  334.   return a.PackBits() != bs;
  335. }
  336.  
  337. int operator!=(const __SWORD__ &as, const INT16 &b)
  338. {
  339.   return as != b.PackBits();
  340. }
  341.  
  342. int operator!=(const INT16 &a, const __UWORD__ &bs)
  343. {
  344.   return a.PackBits() != bs;
  345. }
  346.  
  347. int operator!=(const __UWORD__ &as, const INT16 &b)
  348. {
  349.   return as != b.PackBits();
  350. }
  351.  
  352. int operator!=(const INT16 &a, const __USWORD__ &bs)
  353. {
  354.   return a.PackBits() != bs;
  355. }
  356.  
  357. int operator!=(const __USWORD__ &as, const INT16 &b)
  358. {
  359.   return as != b.PackBits();
  360. }
  361.  
  362. int operator!=(const INT16 &a, const __SBYTE__ &bs)
  363. {
  364.   return a.PackBits() != (__SWORD__)bs;
  365. }
  366.  
  367. int operator!=(const __SBYTE__ &as, const INT16 &b)
  368. {
  369.   return (__SWORD__)as != b.PackBits();
  370. }
  371.  
  372. int operator!=(const INT16 &a, const __UBYTE__ &bs)
  373. {
  374.   return a.PackBits() != (__SWORD__)bs;
  375. }
  376.  
  377. int operator!=(const __UBYTE__ &as, const INT16 &b)
  378. {
  379.   return (__SWORD__)as != b.PackBits();
  380. }
  381.  
  382. int operator<(const INT16 &a, const INT16 &b)
  383. {
  384.   return a.PackBits() < b.PackBits();
  385. }
  386.  
  387. int op